home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_39_guess the song = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  819 b   |  27 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  3. end
  4.  
  5. on mouseDown
  6.   global gTrackGuessed, gCD, gSongWereGuessing
  7.   set the member of sprite (gTrackGuessed + 5) to "eddie" & string(gTrackGuessed) & "w"
  8.   set gTrackGuessed to the currentSpriteNum - 5
  9.   set the member of sprite the currentSpriteNum to "eddie" & string(gTrackGuessed) & "r"
  10. end
  11.  
  12. on mouseUp
  13.   global gTrackGuessed, gCD, gSongWereGuessing
  14.   if gTrackGuessed = gSongWereGuessing then
  15.     startTimer()
  16.     go("correct")
  17.   else
  18.     go("wrong")
  19.     set the member of sprite 18 to "error_" & string(random(5))
  20.     updateStage()
  21.   end if
  22. end
  23.  
  24. on mouseLeave
  25.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  26. end
  27.